projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f519344
)
Remove extraneous semicolon.
author
emellor@ewan
<emellor@ewan>
Tue, 20 Sep 2005 16:25:27 +0000
(17:25 +0100)
committer
emellor@ewan
<emellor@ewan>
Tue, 20 Sep 2005 16:25:27 +0000
(17:25 +0100)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
extras/mini-os/xenbus/xenbus_xs.c
patch
|
blob
|
history
diff --git
a/extras/mini-os/xenbus/xenbus_xs.c
b/extras/mini-os/xenbus/xenbus_xs.c
index 89b424055c714617c838c12d85881b8d6ebe36e6..8a6348ab89f4270f7077ce3a07d17692851c5ef7 100644
(file)
--- a/
extras/mini-os/xenbus/xenbus_xs.c
+++ b/
extras/mini-os/xenbus/xenbus_xs.c
@@
-127,7
+127,7
@@
static void *xs_talkv(enum xsd_sockmsg_type type,
return ERR_PTR(err);
for (i = 0; i < num_vecs; i++) {
- err = xb_write(iovec[i].iov_base, iovec[i].iov_len);
;
+ err = xb_write(iovec[i].iov_base, iovec[i].iov_len);
if (err)
return ERR_PTR(err);
}